github.com/jackc/pgx/v5/internal/stmtcache.lruNode.next (field)

15 uses

	github.com/jackc/pgx/v5/internal/stmtcache (current package)
		lru_cache.go#L11: 	next *lruNode
		lru_cache.go#L32: 	head.next = tail
		lru_cache.go#L97: 	for node := c.head.next; node != c.tail; {
		lru_cache.go#L98: 		next := node.next
		lru_cache.go#L106: 	c.head.next = c.tail
		lru_cache.go#L151: 	node.next = at.next
		lru_cache.go#L152: 	at.next.prev = node
		lru_cache.go#L153: 	at.next = node
		lru_cache.go#L157: 	node.prev.next = node.next
		lru_cache.go#L158: 	node.next.prev = node.prev
		lru_cache.go#L174: 		c.freelist = node.next
		lru_cache.go#L175: 		node.next = nil
		lru_cache.go#L185: 	node.next = c.freelist